home *** CD-ROM | disk | FTP | other *** search
Makefile | 1991-10-17 | 1.5 KB | 58 lines |
- # Makefile for GNU fileutils documentation.
- # Do not use this makefile directly, but only from `../Makefile'.
- # Copyright (C) 1986-1991 Free Software Foundation, Inc.
-
- # This program is free software; you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation; either version 2, or (at your option)
- # any later version.
-
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
-
- # You should have received a copy of the GNU General Public License
- # along with this program; if not, write to the Free Software
- # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-
- SHELL = /bin/sh
-
- srcdir = @srcdir@/man
- @VPATH@
-
- MANFILES = gchgrp.1 gchown.1 gchmod.1 gcp.1 gdd.1 gdf.1 gdu.1 ginstall.1 \
- gln.1 gls.1 gmkdir.1 gmkfifo.1 gmknod.1 gmv.1 grm.1 grmdir.1 gtouch.1
-
- DISTFILES = Makefile.in $(MANFILES)
-
- all:
- .PHONY: all
-
- install: all
- for f in $(MANFILES); do \
- if test -f $$f; then src=.; else src=$(srcdir); fi; \
- ../src/ginstall -m 644 $$src/$$f \
- $(mandir)/`basename $$f 1`$(manext); done
- .PHONY: install
-
- tags:
- .PHONY: tags
-
- TAGS:
- .PHONY: TAGS
-
- clean:
- .PHONY: clean
-
- distclean: clean
- rm -f Makefile
- .PHONY: distclean
-
- realclean: distclean
- .PHONY: realclean
-
- dist:
- ln $(DISTFILES) ../`cat ../.fname`/man
- .PHONY: dist
-